home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CDOS10.ARJ / HEADTEST.C < prev    next >
C/C++ Source or Header  |  1992-07-07  |  669b  |  26 lines

  1. /*
  2.    Module        :  Header test
  3.    Version       :  1.0
  4.    Revision date :  july 4th, 1992
  5.    Programmer    :  Rémy Gendron
  6.  
  7.    Description   :  Tests if a header file can be compiled all by itself.
  8. */
  9.  
  10.  
  11. /*----- Local Header Files ------------------------------------------------*/
  12.  
  13. #include "stdfcts.h"
  14.  
  15.  
  16. /*-------------------------------------------------------------------------*/
  17.  
  18. void main (void)
  19.  
  20. {
  21.    return ;                                  /* The header has been tested */
  22. }                                                              /* End main */
  23.  
  24.  
  25. /*-------------------------------------------------------------------------*/
  26.